home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / util2 / vol12n11.zip / OLFONT.ZIP / OLF.H < prev    next >
Text File  |  1993-01-16  |  576b  |  21 lines

  1. /*--------------------------------------------
  2.    OLF.H -- Easy access to OS/2 outline fonts
  3.             (c) Charles Petzold, 1993
  4.   --------------------------------------------*/
  5.  
  6. typedef struct
  7.      {
  8.      int  iNumFaces ;
  9.      char szFacename [1] [FACESIZE] ;
  10.      }
  11.      FACELIST ;
  12.  
  13. typedef FACELIST * PFACELIST ;
  14.  
  15. PFACELIST GetAllOutlineFonts (HPS hps) ;
  16.  
  17. LONG CreateOutlineFont (HPS hps, LONG lcid, char * szFacename,
  18.                         SHORT fsAttributes, SHORT usCodePage) ;
  19.  
  20. BOOL ScaleOutlineFont (HPS hps, int iPointSize, int iPointWidth) ;
  21.